home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 May
/
EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso
/
programs
/
write
/
config
/
english
/
c.config
next >
Wrap
Text File
|
1996-10-06
|
2KB
|
96 lines
CONFIG C;
IMPORT Mouse,
Bookmarks,
Cursor,
Edit_Key,
NumPad,
MatchBracket,
Project,
Edit_Menu,
Intern,
Extern,
Macros,
Utilities,
Search,
Replace,
Replace_All,
Jump,
Count,
Index,
Folds,
Preferences,
Help;
PREFS
_autoFold:=TRUE;
_foldStart:="/*S*/";
_foldEnd:="/*E*/";
_template:=TRUE;
_wordDelimiter:=" ()[]{}^.,;+-*/\"'=#<>:";
BACKUP 1 "#?.(c|cc|h)" ".bak";
BACKUP 0 "#?" "dh0:backup/WRITE.backup";
HOOK CLOSEWINDOW
Standard.M_Quit
END CLOSEWINDOW;
(* templates *)
(* Syntaxcoloring *)
COMMENT "/*" "*/" 1 0 ITALIC;
COMMENT "//" "" 1 0 ITALIC;
STRING "\"" "\"" "\\" 1 0;
TOKEN "if" WORD 1 0 BOLD;
TOKEN "else" WORD 1 0 BOLD;
TOKEN "case" WORD 1 0 BOLD;
TOKEN "switch" WORD 1 0 BOLD;
TOKEN "for" WORD 1 0 BOLD;
TOKEN "while" WORD 1 0 BOLD;
TOKEN "do" WORD 1 0 BOLD;
TOKEN "break" WORD 1 0 BOLD;
TOKEN "continue" WORD 1 0 BOLD;
TOKEN "default" WORD 1 0 BOLD;
TOKEN "goto" WORD 1 0 BOLD;
TOKEN "return" WORD 1 0 BOLD;
TOKEN "{" 1 0 BOLD;
TOKEN "}" 1 0 BOLD;
TOKEN "auto" WORD 1 0 BOLD;
TOKEN "static" WORD 1 0 BOLD;
TOKEN "struct" WORD 1 0 BOLD;
TOKEN "extern" WORD 1 0 BOLD;
TOKEN "const" WORD 1 0 BOLD;
TOKEN "register" WORD 1 0 BOLD;
TOKEN "typedef" WORD 1 0 BOLD;
TOKEN "union" WORD 1 0 BOLD;
TOKEN "int" WORD 1 0 BOLD;
TOKEN "long" WORD 1 0 BOLD;
TOKEN "char" WORD 1 0 BOLD;
TOKEN "void" WORD 1 0 BOLD;
TOKEN "float" WORD 1 0 BOLD;
TOKEN "double" WORD 1 0 BOLD;
TOKEN "enum" WORD 1 0 BOLD;
TOKEN "unsigned" WORD 1 0 BOLD;
TOKEN "short" WORD 1 0 BOLD;
TOKEN "#include" WORD 1 0 BOLD;
TOKEN "#define" WORD 1 0 BOLD;
TOKEN "#ifdef" WORD 1 0 BOLD;
TOKEN "#ifndef" WORD 1 0 BOLD;
TOKEN "#endif" WORD 1 0 BOLD;
TOKEN "sizeof" WORD 1 0 BOLD;
TOKEN "NULL" WORD 1 0 BOLD;
END C.